home *** CD-ROM | disk | FTP | other *** search
- echo off
-
- echo ╔═══════════════════════════════════════════════════════════════════════════╗
- echo ║ ║
- echo ║ DDemo will list all the duplicate files on disk %%1 where %%1 is the ║
- echo ║ the command line argument which should be the letter of the drive ║
- echo ║ you want to check for duplicates using the Root directory as the ║
- echo ║ parent directory for searching purposes. For example: ║
- echo ║ ║
- echo ║ DDemo C ║
- echo ║ ║
- echo ║ will list all the duplicate files on drive 'C:' beginning with the ║
- echo ║ Root directory and searching all subdirectorys below that. ║
- echo ║ ║
- echo ╚═══════════════════════════════════════════════════════════════════════════╝
-
- if %1x==x goto error
- dd2 %1:\
- goto ender
-
- :error
- echo
- echo ╔═══════════════════════════════════════════════════════════════════════════╗
- echo ║ ║
- echo ║ Re-Type the DDemo.Bat command using a DOS drive letter as Argument %%1 ║
- echo ║ ║
- echo ║ Example: DDemo C ║
- echo ║ ║
- echo ╚═══════════════════════════════════════════════════════════════════════════╝
-
- :ender